File: ConcreteModelController.cxx

package info (click to toggle)
clam 1.4.0-5.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 17,780 kB
  • sloc: cpp: 92,499; python: 9,721; ansic: 1,602; xml: 444; sh: 239; makefile: 153; perl: 54; asm: 15
file content (29 lines) | stat: -rw-r--r-- 563 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "ConcreteModelController.hxx"
#include <Assert.hxx>

namespace CLAMVM
{
		ConcreteModelController::ConcreteModelController()
		{
				Prepare();
		}

		ConcreteModelController::~ConcreteModelController()
		{
		}


		void ConcreteModelController::RegisterOutControls( )
		{
				RegisterAs(  &mOutCtl_1, "Control#1"  );
				RegisterAs(  &mOutCtl_2, "Control#2"  );
				RegisterAs(  &mOutCtl_3, "Control#3"  );
				RegisterAs(  &mOutCtl_4, "Control#4"  );
				RegisterAs(  &mOutCtl_5, "Control#5"  );
				RegisterAs(  &mOutCtl_6, "Control#6"  );
		}
		


}