Changeset 121 for cpp/frams/vm


Ignore:
Timestamp:
02/08/14 06:00:41 (10 years ago)
Author:
sz
Message:

updated file headers and makefiles

Location:
cpp/frams/vm/classes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/vm/classes/3dobject.cpp

    r109 r121  
     1// This file is a part of the Framsticks GDK.
     2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
     3// Refer to http://www.framsticks.com/ for further information.
     4
    15#include <frams/util/3d.h>
    26#include "3dobject.h"
  • cpp/frams/vm/classes/3dobject.h

    r109 r121  
     1// This file is a part of the Framsticks GDK.
     2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
     3// Refer to http://www.framsticks.com/ for further information.
     4
    15#ifndef _3DOBJECT_H_
    26#define _3DOBJECT_H_
  • cpp/frams/vm/classes/collectionobj.cpp

    r109 r121  
    1 // This file is a part of the Framsticks GDK library.
    2 // Copyright (C) 2002-2011 Szymon Ulatowski.  See LICENSE.txt for details.
     1// This file is a part of the Framsticks GDK.
     2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
    33// Refer to http://www.framsticks.com/ for further information.
    44
     
    7777        if (v) delete v;
    7878        }
    79 //nie tak spektakularny jak rasowe bugi roku ale tez idiotyczny :>
    80 //wszystko przez to ze poczatkowo bylo tylko uzywane w destruktorze...
    8179data.clear();
    8280}
  • cpp/frams/vm/classes/collectionobj.h

    r109 r121  
    1 // This file is a part of the Framsticks GDK library.
    2 // Copyright (C) 2002-2011 Szymon Ulatowski.  See LICENSE.txt for details.
     1// This file is a part of the Framsticks GDK.
     2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
    33// Refer to http://www.framsticks.com/ for further information.
    44
     
    7373SString serialize() const;
    7474static void p_new(void*,ExtValue*args,ExtValue*ret)
    75         {ret->setObject(ExtObject(&par,new DictionaryObject));} //NOWY KANDYDAT NA BUGA ROKU!!!
     75        {ret->setObject(ExtObject(&par,new DictionaryObject));}
    7676static DictionaryObject* fromObject(const ExtObject& v);
    7777ExtObject makeObject() {return ExtObject(&par,this);}
Note: See TracChangeset for help on using the changeset viewer.