Changeset 724564 for src/Patterns/unittests/stubs/CommonStub.cpp
- Timestamp:
- Jan 4, 2011, 5:15:14 PM (15 years ago)
- Children:
- 1afcbe
- Parents:
- 746ff1
- git-author:
- Frederik Heber <heber@…> (01/04/11 15:57:33)
- git-committer:
- Frederik Heber <heber@…> (01/04/11 17:15:14)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/unittests/stubs/CommonStub.cpp
r746ff1 r724564 7 7 8 8 /* 9 * C reatorStub.cpp9 * CommonStub.cpp 10 10 * 11 11 * Created on: Jan 4, 2011 … … 13 13 */ 14 14 15 // include config.h 16 #ifdef HAVE_CONFIG_H 17 #include <config.h> 18 #endif 19 20 #include "CommonStub.hpp" 21 15 22 namespace teststubs { 16 class Aclass {}; 17 class Bclass {}; 23 Aclass::Aclass() : 24 counter(0) 25 {}; 26 27 Aclass::~Aclass() {}; 28 29 Bclass::Bclass() : 30 counter(256) 31 {}; 32 33 Bclass::~Bclass() {}; 18 34 };
Note:
See TracChangeset
for help on using the changeset viewer.