///////////////////////////////////////////////////////////
// Strategy.cpp
// Implementation of the Class Strategy
// Created on: 09-十月-2014 22:21:07
// Original author: colin
///////////////////////////////////////////////////////////
#include "Strategy.h"
Strategy::Strategy(){
}
Strategy::~Strategy(){
}
void Strategy::algorithm(){
}