root/applications/example_application/example_lib.h @ 982

Revision 982, 427 bytes (checked in by smidl, 14 years ago)

Example application using bdm in C++

Line 
1/*!
2  \file
3  \brief Robust Bayesian auto-regression model
4  \author Jan Sindelar.
5*/
6
7#ifndef EXAMPLE_LIB_H
8#define EXAMPLE_LIB_H
9
10#include <stat/exp_family.h>
11       
12using namespace bdm;
13using namespace std;
14
15class my_pdf: public egamma {
16        public:
17        my_pdf():egamma(){cout << "hello world"<<endl;}
18};
19
20
21//! Robust Bayesian AR model for Multicriteria-Laplace-Inverse-Gamma density
22class my_BM : public BM{
23};
24
25
26#endif //EXAMPLE_LIB
Note: See TracBrowser for help on using the browser.