~unity8-desktop-session-team/noachian/trunk

« back to all changes in this revision

Viewing changes to noachiand/containerfactory.cpp

  • Committer: Stephen M. Webb
  • Date: 2014-08-21 20:24:00 UTC
  • Revision ID: stephen.webb@canonical.com-20140821202400-mkjdydr9bixvod1e
added crude Container classes and tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * @file noachiand/containerfactory.cpp
 
3
 * @brief noachiand abstract container factory interface
 
4
 */
 
5
 
 
6
/*
 
7
 * Copyright 2014 Canonical Ltd.
 
8
 *
 
9
 * This program is free software: you can redistribute it and/or modify it under
 
10
 * the terms of the GNU General Public License, version 3, as published by the
 
11
 * Free Software Foundation.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */
 
21
#include "noachiand/containerfactory.h"
 
22
 
 
23
namespace Noachiand
 
24
{
 
25
 
 
26
ContainerFactory::
 
27
~ContainerFactory()
 
28
{ }
 
29
 
 
30
} // namespace Noachiand
 
31