Design Patterns
Main Page
Namespaces
Classes
Files
File List
my_strategy.h
Go to the documentation of this file.
1
// Based on "Design Patterns: Elements of Reusable Object-Oriented Software"
2
// book by Erich Gamma, John Vlissides, Ralph Johnson, and Richard Helm
3
//
4
// Created by Bartosz Rachwal. The National Institute of Advanced Industrial Science and Technology, Japan.
5
6
#ifndef OPERATIONAL_STRATEGY_MY_STRATEGY_H_
7
#define OPERATIONAL_STRATEGY_MY_STRATEGY_H_
8
9
#include <string>
10
11
namespace
operational
12
{
13
namespace
strategy
14
{
15
class
MyStrategy
16
{
17
public
:
18
static
std::string
DoAlgorithm
();
19
};
20
}
21
}
22
23
#endif
24
operational
Definition:
application.cc:10
operational::strategy::MyStrategy::DoAlgorithm
static std::string DoAlgorithm()
Definition:
my_strategy.cc:14
operational::strategy::MyStrategy
Definition:
my_strategy.h:15
src
operational
src
strategy
my_strategy.h
Generated by
1.8.10