~ubuntu-branches/ubuntu/wily/ginkgocadx/wily-proposed

« back to all changes in this revision

Viewing changes to src/cadxcore/main/controllers/parserxmlenglish.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-05-02 08:09:26 UTC
  • Revision ID: james.westby@ubuntu.com-20110502080926-bql5wep49c7hg91t
Tags: upstream-2.4.1.1
ImportĀ upstreamĀ versionĀ 2.4.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  
 
3
 *  $Id: parserxmlenglish.h 3664 2011-04-08 11:38:02Z tovar $
 
4
 *  Ginkgo CADx Project
 
5
 *
 
6
 *  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
 
7
 *  http://ginkgo-cadx.com
 
8
 *
 
9
 *  This file is licensed under LGPL v3 license.
 
10
 *  See License.txt for details
 
11
 *
 
12
 *
 
13
 */
 
14
#pragma once
 
15
#include <api/ientorno.h>
 
16
#include <api/icontroladorhl7.h>
 
17
#include <api/imodelohl7.h>
 
18
 
 
19
namespace GIL {
 
20
        namespace HL7 {
 
21
                class ParserXMLEnglish : public GIL::HL7::IXMLIntegrationParser {
 
22
                public:
 
23
 
 
24
                        ParserXMLEnglish();
 
25
                        ~ParserXMLEnglish();
 
26
                        virtual std::string GetKey();
 
27
                        virtual void ParseIntegrationXML(GNC::GCS::IEntorno::ListaModelosIntegracion& models, wxXmlNode* pRoot);                        
 
28
                protected:
 
29
                };
 
30
        }
 
31
}