~thumper/nux/properties

« back to all changes in this revision

Viewing changes to NuxMesh/NWorldObject.h

  • Committer: Tim Penhey
  • Date: 2011-06-30 13:45:32 UTC
  • mfrom: (373.1.2 remove-nux-mesh)
  • Revision ID: tim.penhey@canonical.com-20110630134532-7tda1y8mgjp10q4o
Remove old CMakeLists.txt files (no longer using CMake), and removing old NuxMesh code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2010 Inalogic® Inc.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it
5
 
 * under the terms of the GNU Lesser General Public License, as
6
 
 * published by the  Free Software Foundation; either version 2.1 or 3.0
7
 
 * of the License.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful, but
10
 
 * WITHOUT ANY WARRANTY; without even the implied warranties of
11
 
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
12
 
 * PURPOSE.  See the applicable version of the GNU Lesser General Public
13
 
 * License for more details.
14
 
 *
15
 
 * You should have received a copy of both the GNU Lesser General Public
16
 
 * License along with this program.  If not, see <http://www.gnu.org/licenses/>
17
 
 *
18
 
 * Authored by: Jay Taoko <jaytaoko@inalogic.com>
19
 
 *
20
 
 */
21
 
 
22
 
 
23
 
#ifndef NWORLDOBJECT_H
24
 
#define NWORLDOBJECT_H
25
 
 
26
 
namespace nux
27
 
{
28
 
 
29
 
  class NWorldObject
30
 
  {
31
 
  public:
32
 
    NWorldObject();
33
 
    ~NWorldObject();
34
 
 
35
 
  };
36
 
 
37
 
}
38
 
 
39
 
#endif // NWORLDOBJECT
40