source: src/Patterns/unittests/stubs/RegistryStub.hpp@ 039e15

Last change on this file since 039e15 was 9b8fa4, checked in by Frederik Heber <heber@…>, 14 years ago

Huge update of file structure to place installation header files into right folder.

  • The problem ist that we desire use as include "CodePatterns/...". For this to work, especially with the new Observer subfolder structure, it has been necessary to place all header files away from their source files into a distinct folder called CodePatterns. This emulates the later, after make install present structure.
  • essentially all source and header files had to be changed to adapt the include.
  • all Makefile.am's had to be changed.
  • nobase_ ... was removed such that header files are installed flat and not creating their subfolder along the process.
  • We placed Observer into its own convenience library and own folder Observer away from Patterns.

Some other changes:

  • FIX: MemDebug.hpp inclusion has been removed in all stubs.
  • Property mode set to 100644
File size: 348 bytes
Line 
1/*
2 * RegistryStub.hpp
3 *
4 * Created on: Jan 16, 2011
5 * Author: heber
6 */
7
8#ifndef REGISTRYSTUB_HPP_
9#define REGISTRYSTUB_HPP_
10
11#include "CommonNamedStub.hpp"
12#include "CodePatterns/Registry.hpp"
13
14class RegistryStub : public Registry<teststubs::INamedclass>
15{
16public:
17
18 RegistryStub();
19 ~RegistryStub();
20};
21
22#endif /* REGISTRYSTUB_HPP_ */
Note: See TracBrowser for help on using the repository browser.