~bregma/+junk/noachian

« back to all changes in this revision

Viewing changes to noachiand/container.cpp

  • Committer: Stephen M. Webb
  • Date: 2014-08-21 22:09:30 UTC
  • Revision ID: stephen.webb@canonical.com-20140821220930-gud15pns1a4mxiq1
Added start/stop to the Container

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
 */
21
21
#include "noachiand/container.h"
 
22
#include "noachiand/containerimpl.h"
22
23
 
23
24
 
24
25
namespace Noachiand
33
34
~Container()
34
35
{ }
35
36
 
 
37
 
 
38
void Container::
 
39
start()
 
40
{ impl_->start(); }
 
41
 
 
42
 
 
43
void Container::
 
44
stop()
 
45
{ impl_->stop(); }
 
46
 
36
47
} // namespace Noachiand
37
48