/* *-------------------------------------------------------------------- * Project: VM65 - Virtual Machine/CPU emulator programming * framework. * * File: * * Purpose: Prototype of MKBasic class and all supporting data * structures, enumerations, constants and macros. * NOTE: This is obsolete concept and will likely be * removed from project. * * Date: 8/25/2016 * * Copyright: (C) by Marek Karcz 2016. All rights reserved. * * Contact: makarcz@yahoo.com * * License Agreement and Warranty: This software is provided with No Warranty. I (Marek Karcz) will not be held responsible for any damage to computer systems, data or user's health resulting from use. Please proceed responsibly and apply common sense. This software is provided in hope that it will be useful. It is free of charge for non-commercial and educational use. Distribution of this software in non-commercial and educational derivative work is permitted under condition that original copyright notices and comments are preserved. Some 3-rd party work included with this project may require separate application for permission from their respective authors/copyright owners. *-------------------------------------------------------------------- */ #ifndef MKBASIC_H #define MKBASIC_H #include "VMachine.h" namespace MKBasic { class MKBasic : public VMachine { public: MKBasic(); ~MKBasic(); protected: }; } // namespace MKBasic #endif