The BioCro C++ Library
module_library.h
Go to the documentation of this file.
1#ifndef STANDARDBML_H
2#define STANDARDBML_H
3
4#include "../framework/module_creator.h" // for module_creator and creator_map
5
6// When creating a new module library R package, it will be necessary to modify
7// the header guard and the namespace name in this file to reflect the new
8// package name. For example, if the new package is to be called `myLib`, the
9// header guard should become `MYLIB_H` and the namespace should become `mylib`.
10// The doxygen-style comment describing the namespace should also be updated to
11// reflect the purpose of the new library.
12
17namespace standardBML
18{
20{
21 public:
22 static creator_map library_entries;
23};
24
25} // namespace standardBML
26
27#endif
static creator_map library_entries
This is the standard BioCro module library; it includes the essential modules used in typical BioCro ...
Definition: aba_decay.h:8