[prediction] #ifndef _<PROJECT>_<FILE>_H_ convention apply. 75/57975/2
authorMarcin Masternak <m.masternak@samsung.com>
Tue, 2 Feb 2016 10:36:50 +0000 (11:36 +0100)
committerMarcin Masternak <m.masternak@samsung.com>
Tue, 2 Feb 2016 10:36:50 +0000 (11:36 +0100)
Change-Id: I55a3ad34b6b239ae1b759211e9db51e8e8b28656
Signed-off-by: Marcin Masternak <m.masternak@samsung.com>
20 files changed:
src/statistics/prediction/assoc_rule.h
src/statistics/prediction/assoc_rule_miner.h
src/statistics/prediction/assoc_rule_of_ids.h
src/statistics/prediction/assoc_rule_producer.h
src/statistics/prediction/basket.h
src/statistics/prediction/basket_compressor.h
src/statistics/prediction/basket_filter.h
src/statistics/prediction/basket_producer.h
src/statistics/prediction/baskets_agregator.h
src/statistics/prediction/event.h
src/statistics/prediction/event_set.h
src/statistics/prediction/i_item_id_filter.h
src/statistics/prediction/interval.h
src/statistics/prediction/item.h
src/statistics/prediction/item_catalogue.h
src/statistics/prediction/item_id_set.h
src/statistics/prediction/item_set.h
src/statistics/prediction/item_string_converter.h
src/statistics/prediction/single_category_item_id_filter.h
src/statistics/prediction/weight_apriori.h

index 252684e844ea3836b5b0f4d38198d819b0f679fa..20d195d57013bd6e43bfcc457255c0cf274d7ce8 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_ASSOC_RULE_H_
-#define INCLUDE_ASSOC_RULE_H_
+#ifndef _PREDICTION_ASSOC_RULE_H_
+#define _PREDICTION_ASSOC_RULE_H_
 
 #include "item_set.h"
 #include <iostream>
@@ -44,4 +44,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_ASSOC_RULE_H_ */
+#endif /* _PREDICTION_ASSOC_RULE_H_ */
index 6d57e3fb3a3124d745c6a05c4feead4f1891e03b..a9c9e97a865e92ca41defa045df7e1df3045fb97 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef ASSOC_RULE_MINER_H_
-#define ASSOC_RULE_MINER_H_
+#ifndef _PREDICTION_ASSOC_RULE_MINER_H_
+#define _PREDICTION_ASSOC_RULE_MINER_H_
 
 #include <list>
 #include <string>
@@ -49,4 +49,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* ASSOC_RULE_MINER_H_ */
+#endif /* _PREDICTION_ASSOC_RULE_MINER_H_ */
index b7dea9a28b4d3e94f9aeb142c564f61de2a617df..9597a5563cff57380feb2a54e956865f437df0a7 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef ASSOC_RULE_OF_IDS_H_
-#define ASSOC_RULE_OF_IDS_H_
+#ifndef _PREDICTION_ASSOC_RULE_OF_IDS_H_
+#define _PREDICTION_ASSOC_RULE_OF_IDS_H_
 
 #include "item_id_set.h"
 
@@ -41,4 +41,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* ASSOC_RULE_OF_IDS_H_ */
+#endif /* _PREDICTION_ASSOC_RULE_OF_IDS_H_ */
index 03eaecf38a8c918030b48a7719d48e80add78fe7..2b02b792fd9a43b868853a9c2143abc9ee84daa8 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef ASSOC_RULE_PRODUCER_H_
-#define ASSOC_RULE_PRODUCER_H_
+#ifndef _PREDICTION_ASSOC_RULE_PRODUCER_H_
+#define _PREDICTION_ASSOC_RULE_PRODUCER_H_
 
 #include "assoc_rule_of_ids.h"
 #include "basket.h"
@@ -41,4 +41,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* ASSOC_RULE_PRODUCER_H_ */
+#endif /* _PREDICTION_ASSOC_RULE_PRODUCER_H_ */
index 2b40eb64b8d31e51f391a65676fc761c4e218327..1adb85172ac69c9289b969368a86b9673c600412 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_BASKET_H_
-#define INCLUDE_BASKET_H_
+#ifndef _PREDICTION_BASKET_H_
+#define _PREDICTION_BASKET_H_
 
 #include "item_id_set.h"
 #include <vector>
@@ -45,4 +45,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_BASKET_H_ */
+#endif /* _PREDICTION_BASKET_H_ */
index a0f5a95e0e4f1ce560c8ca9bc2721c2c68f9661d..776f0745499ff82692ee1d67de3758fdb958be4d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef BASKET_COMPRESSOR_H_
-#define BASKET_COMPRESSOR_H_
+#ifndef _PREDICTION_BASKET_COMPRESSOR_H_
+#define _PREDICTION_BASKET_COMPRESSOR_H_
 
 #include <list>
 #include <string>
@@ -35,4 +35,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* BASKET_COMPRESSOR_H_ */
+#endif /* _PREDICTION_BASKET_COMPRESSOR_H_ */
index 18a03fd0f5fa1c06f6c2d3a2984dc64dc37433cc..6f8a114e7969cdd0c33ae8f4c58611ab5739f3c8 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef BASKET_FILTER_H_
-#define BASKET_FILTER_H_
+#ifndef _PREDICTION_BASKET_FILTER_H_
+#define _PREDICTION_BASKET_FILTER_H_
 
 #include "basket.h"
 #include "i_item_id_filter.h"
@@ -35,4 +35,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* BASKET_FILTER_H_ */
+#endif /* _PREDICTION_BASKET_FILTER_H_ */
index c265d942e51e1870bbf90f97fe1df52971ccb082..f2c9757db54d1dd87a9a0a74d37f7cf81dfc0ca7 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_BASKET_PRODUCER_H_
-#define INCLUDE_BASKET_PRODUCER_H_
+#ifndef _PREDICTION_BASKET_PRODUCER_H_
+#define _PREDICTION_BASKET_PRODUCER_H_
 
 #include "event.h"
 #include "basket.h"
@@ -47,4 +47,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_BASKET_PRODUCER_H_ */
+#endif /* _PREDICTION_BASKET_PRODUCER_H_ */
index e3093feeaac7a76192172e9ce4e0d7e0e08e5592..5ce18c05a7c1efd33c43cf3889268b00bc9ab09d 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_BASKETS_AGREGATOR_H_
-#define INCLUDE_BASKETS_AGREGATOR_H_
+#ifndef _PREDICTION_BASKETS_AGREGATOR_H_
+#define _PREDICTION_BASKETS_AGREGATOR_H_
 
 #include <list>
 #include <memory>
@@ -38,4 +38,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_BASKETS_AGREGATOR_H_ */
+#endif /* _PREDICTION_BASKETS_AGREGATOR_H_ */
index 029296f3282d0541f65d48ba8af0d69175a965bf..99048e48946e704ce6cbda59ea5c51a840c1e0f4 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_EVENT_H_
-#define INCLUDE_EVENT_H_
+#ifndef _PREDICTION_EVENT_H_
+#define _PREDICTION_EVENT_H_
 
 #include "item.h"
 #include "interval.h"
@@ -38,4 +38,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_EVENT_H_ */
+#endif /* _PREDICTION_EVENT_H_ */
index dda0bc22143d981718b4f1b5f7d6e3a2940b7213..e097ece60c1d3548c50bfc16e832497f9720ff34 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_EVENT_SET_H_
-#define INCLUDE_EVENT_SET_H_
+#ifndef _PREDICTION_EVENT_SET_H_
+#define _PREDICTION_EVENT_SET_H_
 
 #include "event.h"
 
@@ -25,4 +25,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_EVENT_SET_H_ */
+#endif /* _PREDICTION_EVENT_SET_H_ */
index dd4c386298cdc2449140e6227c69dd4f3383da49..1a8ac45fc55262c4c0c03ebc68ffa25d33434b31 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef I_ITEM_ID_FILTER_H_
-#define I_ITEM_ID_FILTER_H_
+#ifndef _PREDICTION_I_ITEM_ID_FILTER_H_
+#define _PREDICTION_I_ITEM_ID_FILTER_H_
 
 namespace ctx {
 
@@ -29,4 +29,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* I_ITEM_ID_FILTER_H_ */
+#endif /* _PREDICTION_I_ITEM_ID_FILTER_H_ */
index 2153aa0fc8a4a1c1c8c86d7c6afe2027623205ff..3576da1954eaa26e9739a00ce2125a57a7c6e390 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_INTERVAL_H_
-#define INCLUDE_INTERVAL_H_
+#ifndef _PREDICTION_INTERVAL_H_
+#define _PREDICTION_INTERVAL_H_
 
 #include <ctime>
 
@@ -33,4 +33,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_INTERVAL_H_ */
+#endif /* _PREDICTION_INTERVAL_H_ */
index edf7d28347fa0be7a7ff32c5f6434e336fce3e22..0e933ceb1e025e3cea41af42e380f00543c20fb5 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_ITEM_H_
-#define INCLUDE_ITEM_H_
+#ifndef _PREDICTION_ITEM_H_
+#define _PREDICTION_ITEM_H_
 
 #include <string>
 #include <iostream>
@@ -48,4 +48,4 @@ namespace std {
 
 }
 
-#endif /* INCLUDE_ITEM_H_ */
+#endif /* _PREDICTION_ITEM_H_ */
index 96b5279c9ebb63f962ecfd59f17dd25c377cd3e1..404765b252c2a66236e115e6110b8be71d016283 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_ITEMCATALOGUE_H_
-#define INCLUDE_ITEMCATALOGUE_H_
+#ifndef _PREDICTION_ITEM_CATALOGUE_H_
+#define _PREDICTION_ITEM_CATALOGUE_H_
 
 #include "item.h"
 #include <map>
@@ -57,4 +57,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_ITEMCATALOGUE_H_ */
+#endif /* _PREDICTION_ITEM_CATALOGUE_H_ */
index 0604fedf76aba3213979ab75986f9475821f84f4..ce18f71884a46fc7ada0d5f242045d7335e75541 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_ITEM_ID_SET_H_
-#define INCLUDE_ITEM_ID_SET_H_
+#ifndef _PREDICTION_ITEM_ID_SET_H_
+#define _PREDICTION_ITEM_ID_SET_H_
 
 #include <list>
 
@@ -26,4 +26,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_ITEM_ID_SET_H_ */
+#endif /* _PREDICTION_ITEM_ID_SET_H_ */
index 98a1b6d00df5b4754f98d76103f1202c9474e44f..f13c8bc8c7086b656bbb4c89ec2502c7d5708bee 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_ITEM_SET_H_
-#define INCLUDE_ITEM_SET_H_
+#ifndef _PREDICTION_ITEM_SET_H_
+#define _PREDICTION_ITEM_SET_H_
 
 #include <list>
 #include "item.h"
@@ -31,4 +31,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_ITEM_SET_H_ */
+#endif /* _PREDICTION_ITEM_SET_H_ */
index 961c1f3f9322b529c7bf013f61c293fff511d4ac..15de8b23f714a39d0e546845185c9b8423cbaa0b 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_ITEMSTRINGCONVERTER_H_
-#define INCLUDE_ITEMSTRINGCONVERTER_H_
+#ifndef _PREDICTION_ITEM_STRING_CONVERTER_H_
+#define _PREDICTION_ITEM_STRING_CONVERTER_H_
 
 #include "item.h"
 
@@ -32,4 +32,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_ITEMSTRINGCONVERTER_H_ */
+#endif /* _PREDICTION_ITEM_STRING_CONVERTER_H_ */
index 4ef9cf4ed8786d468f1d5f8a004e3e1ee0569888..4cc7dd652208b8aad086e0f8d032364d0c15b431 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef SINGLE_CATEGORY_ITEM_ID_FILTER_H_
-#define SINGLE_CATEGORY_ITEM_ID_FILTER_H_
+#ifndef _PREDICTION_SINGLE_CATEGORY_ITEM_ID_FILTER_H_
+#define _PREDICTION_SINGLE_CATEGORY_ITEM_ID_FILTER_H_
 
 #include "i_item_id_filter.h"
 #include "item_catalogue.h"
@@ -35,4 +35,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* SINGLE_CATEGORY_ITEM_ID_FILTER_H_ */
+#endif /* _PREDICTION_SINGLE_CATEGORY_ITEM_ID_FILTER_H_ */
index 94aecf2e8ef0b522d919f3a4760b19af3f7775a4..6cb493dc425bece56cc54eccfe012a57e8525c58 100644 (file)
@@ -14,8 +14,8 @@
  * limitations under the License.
  */
 
-#ifndef INCLUDE_WEIGHT_APRIORI_H_
-#define INCLUDE_WEIGHT_APRIORI_H_
+#ifndef _PREDICTION_WEIGHT_APRIORI_H_
+#define _PREDICTION_WEIGHT_APRIORI_H_
 
 #include "baskets_agregator.h"
 #include <list>
@@ -41,4 +41,4 @@ namespace ctx {
 
 }      /* namespace ctx */
 
-#endif /* INCLUDE_WEIGHT_APRIORI_H_ */
+#endif /* _PREDICTION_WEIGHT_APRIORI_H_ */