修订版 | 70 (tree) |
---|---|
时间 | 2011-05-22 20:56:53 |
作者 | (del#42492) |
core のライブラリを参照する際、一つ一つのモジュールをインクルードするのが大変なので core.hpp を一つインクルードすれば良いように修正した。
@@ -1,9 +1,4 @@ | ||
1 | -#include <spcf/core/Controller.hpp> | |
2 | -#include <spcf/core/Engine.hpp> | |
3 | -#include <spcf/core/GrammarPhrase.hpp> | |
4 | -#include <spcf/core/GrammarTransition.hpp> | |
5 | -#include <spcf/core/Recognition.hpp> | |
6 | -#include <spcf/core/RecognitionProperty.hpp> | |
1 | +#include <spcf/core.hpp> | |
7 | 2 | #include <spcf/engine-factory/EngineFactory.hpp> |
8 | 3 | #include <spcf/grammar/GrammarCommonImpl.hpp> |
9 | 4 | #include <spcf/grammar/NumeralGrammar.hpp> |
@@ -1,8 +1,4 @@ | ||
1 | -#include <spcf/core/Controller.hpp> | |
2 | -#include <spcf/core/Engine.hpp> | |
3 | -#include <spcf/core/GrammarPhrase.hpp> | |
4 | -#include <spcf/core/GrammarTransition.hpp> | |
5 | -#include <spcf/core/Recognition.hpp> | |
1 | +#include <spcf/core.hpp> | |
6 | 2 | #include <spcf/engine-factory/EngineFactory.hpp> |
7 | 3 | #include <spcf/grammar/GrammarCommonImpl.hpp> |
8 | 4 | #include <spcf/processor/DefaultProcessor.hpp> |
@@ -0,0 +1,23 @@ | ||
1 | +/** | |
2 | + * 最初の著者:: トゥイー | |
3 | + * リポジトリ情報:: $Id$ | |
4 | + * 著作権:: Copyright (C) Ownway.info, 2011. All rights reserved. | |
5 | + * ライセンス:: CPL(Common Public Licence) | |
6 | + */ | |
7 | + | |
8 | +#ifndef _SPEECH_CONTROLLER_FRAMEWORK_CORE_HPP_ | |
9 | +#define _SPEECH_CONTROLLER_FRAMEWORK_CORE_HPP_ | |
10 | + | |
11 | +#include "spcf/core/Context.hpp" | |
12 | +#include "spcf/core/Controller.hpp" | |
13 | +#include "spcf/core/Engine.hpp" | |
14 | +#include "spcf/core/EngineEventHandler.hpp" | |
15 | +#include "spcf/core/Grammar.hpp" | |
16 | +#include "spcf/core/GrammarPhrase.hpp" | |
17 | +#include "spcf/core/GrammarTransition.hpp" | |
18 | +#include "spcf/core/Processor.hpp" | |
19 | +#include "spcf/core/Recognition.hpp" | |
20 | +#include "spcf/core/RecognitionProperty.hpp" | |
21 | +#include "spcf/core/View.hpp" | |
22 | + | |
23 | +#endif |