Home | History | Annotate | Download | only in native
      1 /*
      2  * Copyright (C) 2014 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef __DMT_API_H__
     18 #define __DMT_API_H__
     19 
     20 #ifndef __cplusplus
     21 #error "This is a C++ header file; it requires C++ to compile."
     22 #endif
     23 
     24 /** \file dmt.hpp
     25       \brief  External API for DMTree
     26 
     27 The dmt.hpp header file contains External API for DMTree C++ API
     28 
     29 <b>Design Consideration</b>\n
     30 1. Only smart pointers are used, so user never has to allocate or deallocate  memory directly.\n\n
     31 */
     32 
     33 #include <stdlib.h>
     34 #include <string.h>
     35 
     36 #include "jem_defs.hpp"
     37 #include "dmtPrincipal.hpp"
     38 #include "dmtAcl.hpp"
     39 #include "dmtData.hpp"
     40 #include "dmtAttributes.hpp"
     41 #include "dmtDataChunk.hpp"
     42 #include "dmtNode.hpp"
     43 #include "dmtTree.hpp"
     44 #include "dmtTreeFactory.hpp"
     45 #include "dmtNotification.hpp"
     46 #include "dmtSessionProp.hpp"
     47 #include "dmtEvent.hpp"
     48 #include "dmtEventData.hpp"
     49 
     50 #endif
     51