ccNOos  v0.0.0
Build Portable Microcontroller Applications!
Application_Solution.cpp
Go to the documentation of this file.
1 /** \file ccNOos_tests_class.cpp
2 * \brief Cross-Platform Portable ccNOos Class Wrappers
3 
4  Copyright 2021 InMechaSol, Inc
5 
6  Licensed under the Apache License, Version 2.0 (the "License");
7  you may not use this file except in compliance with the License.
8  You may obtain a copy of the License at
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17 
18 Notes:
19 
20 Be certain to compile only one compilation unit in cpp,
21  - not 1 in c and another in cpp
22  - all three files (.h .c and .cpp)
23  -- used to create single cpp compilation unit
24 
25 This source demonstrates the usage of the ccNOos library and its dependence
26 on other files in the library. A platform specific main(.c,.cpp) file need
27 only instantiate, configure, then execute the execution system.
28 
29 */
30 #include "Application_Solution.c"
31 ;
32 
33 
35  computeModuleClass(&MODdataINST(Mn).compMod)
36 {
38 }
39 
MODstructCREATE
#define MODstructCREATE(mNAME)
Definition: version_config.h:268
Mn
#define Mn
Definition: Application_Solution.h:32
MODcallCREATEINS
#define MODcallCREATEINS
Definition: Application_Solution.h:59
MODdataINST
#define MODdataINST(mNAME)
Definition: version_config.h:240
Application_Solution.c
MODdeclareCREATEINS
#define MODdeclareCREATEINS
Definition: Application_Solution.h:58
MODCLASS_NAME
MODCLASS_NAME(Mn)
Definition: Application_Solution.cpp:34