Changeset 192c04 for src/Patterns
- Timestamp:
- Jan 10, 2011, 8:07:18 PM (15 years ago)
- Children:
- 56d62f
- Parents:
- 8dd38e
- git-author:
- Frederik Heber <heber@…> (01/10/11 20:00:52)
- git-committer:
- Frederik Heber <heber@…> (01/10/11 20:07:18)
- Location:
- src/Patterns
- Files:
-
- 2 edited
-
Creator.hpp (modified) (1 diff)
-
unittests/Makefile.am (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Creator.hpp
r8dd38e r192c04 14 14 #endif 15 15 16 /** This class wraps another one and implements a create() function for it.16 /** \section <Creator> (Creator Howto) 17 17 * 18 18 * This pattern is sometimes called 'type erasure': we want to present -
src/Patterns/unittests/Makefile.am
r8dd38e r192c04 31 31 CacheableUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 32 32 CacheableUnitTest.cpp \ 33 CacheableUnitTest.hpp \ 33 CacheableUnitTest.hpp 34 nodist_CacheableUnitTest_SOURCES = \ 34 35 ../Cachable.hpp \ 35 36 ../Observer.hpp \ … … 40 41 CloneUnitTest.cpp \ 41 42 CloneUnitTest.hpp \ 42 ../Clone.hpp \43 43 stubs/CommonStub.cpp \ 44 44 stubs/CommonStub.hpp \ 45 45 stubs/CloneStub.cpp \ 46 46 stubs/CloneStub.hpp 47 nodist_CloneUnitTest_SOURCES = \ 48 ../Clone.hpp 47 49 CloneUnitTest_LDADD = $(TESTLIBS) 48 50 … … 50 52 CreatorUnitTest.cpp \ 51 53 CreatorUnitTest.hpp \ 52 ../Creator.hpp \53 54 stubs/CommonStub.cpp \ 54 55 stubs/CommonStub.hpp \ 55 56 stubs/CreatorStub.hpp 57 nodist_CreatorUnitTest_SOURCES = \ 58 ../Creator.hpp 56 59 CreatorUnitTest_LDADD = $(TESTLIBS) 57 60 … … 63 66 stubs/CreatorStub.hpp \ 64 67 stubs/FactoryStub.hpp \ 65 stubs/FactoryStub.cpp \ 68 stubs/FactoryStub.cpp 69 nodist_FactoryUnitTest_SOURCES = \ 66 70 ../Factory.hpp \ 67 71 ../FactoryTypeList.hpp \ … … 72 76 ManipulableCloneUnitTest.cpp \ 73 77 ManipulableCloneUnitTest.hpp \ 74 ../ManipulableClone.hpp \75 78 stubs/CommonStub.cpp \ 76 79 stubs/CommonStub.hpp \ 77 80 stubs/ManipulableCloneStub.cpp \ 78 81 stubs/ManipulableCloneStub.hpp 82 nodist_ManipulableCloneUnitTest_SOURCES = \ 83 ../ManipulableClone.hpp 79 84 ManipulableCloneUnitTest_LDADD = $(TESTLIBS) 80 85 … … 87 92 stubs/CommonStub.hpp \ 88 93 stubs/ManipulablePrototypeFactoryStub.hpp \ 89 stubs/ManipulablePrototypeFactoryStub.cpp \ 94 stubs/ManipulablePrototypeFactoryStub.cpp 95 nodist_ManipulablePrototypeFactoryUnitTest_SOURCES = \ 90 96 ../ManipulablePrototypeFactory.hpp \ 91 97 ../FactoryTypeList.hpp \ … … 95 101 ObserverUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 96 102 ObserverUnitTest.cpp \ 97 ObserverUnitTest.hpp \ 103 ObserverUnitTest.hpp 104 nodist_ObserverUnitTest_SOURCES = \ 98 105 ../Observer.hpp \ 99 106 ../ObserverIterator.hpp … … 108 115 stubs/CommonStub.hpp \ 109 116 stubs/PrototypeFactoryStub.hpp \ 110 stubs/PrototypeFactoryStub.cpp \ 117 stubs/PrototypeFactoryStub.cpp 118 nodist_PrototypeFactoryUnitTest_SOURCES = \ 111 119 ../PrototypeFactory.hpp \ 112 120 ../FactoryTypeList.hpp \ … … 117 125 RegistryUnitTest.cpp \ 118 126 RegistryUnitTest.hpp 127 #nodist_RegistryUnitTest_SOURCES = 119 128 #RegistryUnitTest_LDADD = $(TESTLIBS) 120 129 … … 122 131 SingletonUnitTest.cpp \ 123 132 SingletonUnitTest.hpp 133 #nodist_SingletonUnitTest_SOURCES = 124 134 SingletonUnitTest_LDADD = $(TESTLIBS) 125 135
Note:
See TracChangeset
for help on using the changeset viewer.
