plugin/poi/landmarks/object/inc/Object.h
changeset 0 c316ab048e9d
equal deleted inserted replaced
-1:000000000000 0:c316ab048e9d
       
     1 /*
       
     2  * Name        : Object.h
       
     3  * Description : 
       
     4  * Project     : This file is part of OpenMAR, an Open Mobile Augmented Reality browser
       
     5  * Website     : http://OpenMAR.org
       
     6  *
       
     7  * Copyright (c) 2010 David Caabeiro
       
     8  *
       
     9  * All rights reserved. This program and the accompanying materials are made available 
       
    10  * under the terms of the Eclipse Public License v1.0 which accompanies this 
       
    11  * distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
       
    12  *
       
    13  */
       
    14 
       
    15 #ifndef OBJECT_H_
       
    16 #define OBJECT_H_
       
    17 
       
    18 #include "POIObject.h"
       
    19 
       
    20 /**
       
    21  * @brief Implements basic object rendering for landmarks
       
    22  */
       
    23 class CLMXObject : public OpenMAR::CPOIObject
       
    24 {
       
    25 public:
       
    26     static CLMXObject* NewL(OpenMAR::CPOIProvider* aProvider);
       
    27     ~CLMXObject();
       
    28 
       
    29 protected:
       
    30     CLMXObject(OpenMAR::CPOIProvider* aProvider);
       
    31     void ConstructL();
       
    32 
       
    33 public:
       
    34     void Render() const;
       
    35 
       
    36 private:
       
    37     TUint iTextureId;
       
    38 };
       
    39 
       
    40 #endif