Added freetype2 support.
[fltk_mvc_template.git] / _template / src / Model.cxx
1 ///////////////////////////////////////////////////////////////////////////
2 // Workfile: Model.cxx
3 // Author: Daniel Giritzer <daniel@giritzer.eu>
4 // Date:
5 // Description: Diese Klasse stellt die Daten und Programmlogik dieses
6 //              Programmes dar.
7 // Remarks:
8 ///////////////////////////////////////////////////////////////////////////
9 #include "Model.h"
10 #include <string>
11 void Model::throwException()
12 {
13     throw std::string("Exception!!");
14 }
15