File: Factory.cpp

package info (click to toggle)
eris 1.3.10-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,592 kB
  • ctags: 1,516
  • sloc: cpp: 9,850; sh: 8,288; perl: 287; ansic: 165; makefile: 162
file content (18 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifdef HAVE_CONFIG_H
    #include "config.h"
#endif

#include <Eris/Factory.h>

namespace Eris {

Factory::~Factory()
{
}

int Factory::priority()
{
    return 0;
}

} // of namespace Eris