source: src/Patterns/unittests/stubs/CommonStub.hpp@ 724564

Last change on this file since 724564 was 724564, checked in by Frederik Heber <heber@…>, 15 years ago

Factory know has an additional type table and stubs have been refactored.

  • CommonStub.?pp contains basic classes with a int counter inside.
  • Library version is now 2:1:0, API is 1.0.3.
  • Property mode set to 100644
File size: 415 bytes
Line 
1/*
2 * CommonStub.hpp
3 *
4 * Created on: Jan 4, 2011
5 * Author: heber
6 */
7
8#ifndef COMMONSTUB_HPP_
9#define COMMONSTUB_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16namespace teststubs {
17 class Aclass
18 {
19 public:
20 Aclass();
21 ~Aclass();
22
23 int counter;
24 };
25
26 class Bclass
27 {
28 public:
29 Bclass();
30 ~Bclass();
31
32 int counter;
33 };
34};
35
36#endif /* COMMONSTUB_HPP_ */
Note: See TracBrowser for help on using the repository browser.