X Tutup
/////////////////////////////////////////////////////////// // Context.cpp // Implementation of the Class Context // Created on: 09-十月-2014 22:21:07 // Original author: colin /////////////////////////////////////////////////////////// #include "Context.h" Context::Context(){ } Context::~Context(){ } void Context::algorithm(){ m_pStrategy->algorithm(); } void Context::setStrategy(Strategy* st){ m_pStrategy = st; }
X Tutup