IODA
Sample.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /// \file Sample.h
9 /// \brief Type system example showing how to write a basic compound object.
10 /// \todo Implement this example.
11 
12 /*
13 class SampleObject
14 {
15 public:
16  int a_;
17  int b_;
18  SampleObject(int a, int b) : a_(a), b_(b) {}
19 };
20 
21 namespace ioda {
22  namespace detail {
23 
24  }
25 }
26 */