BAT 1.0.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
src
BCEmptyModel.cxx
1
/*
2
* Copyright (C) 2007-2013, the BAT core developer team
3
* All rights reserved.
4
*
5
* For the licensing terms see doc/COPYING.
6
* For documentation see http://mpp.mpg.de/bat
7
*/
8
9
// ---------------------------------------------------------
10
11
#include "BCEmptyModel.h"
12
13
// ---------------------------------------------------------
14
BCEmptyModel::BCEmptyModel
(
const
std::string& name)
15
:
BCModel
(name)
16
{
17
}
18
19
// ---------------------------------------------------------
20
BCEmptyModel::BCEmptyModel
(
const
std::string& filename,
const
std::string& name,
bool
reuseObservables)
21
:
BCModel
(filename, name, reuseObservables)
22
{
23
}
BCModel
The base class for all user-defined models.
Definition:
BCModel.h:39
BCEmptyModel::BCEmptyModel
BCEmptyModel(const std::string &name="model")
A constructor.
Definition:
BCEmptyModel.cxx:14