File: Trace.hpp

package info (click to toggle)
vite 1.2%2Bsvn1430-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 20,164 kB
  • ctags: 3,915
  • sloc: cpp: 26,903; makefile: 455; sh: 111; ansic: 67
file content (21 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TRACE_HPP
#define TRACE_HPP

#include "Render.hpp"
#include "Render_opengl.hpp"

class Trace{
public:
    Trace(){
        std::cout << "Trace constructor" << std::endl;
    }

    template <class B> 
    void build(B r){
        std::cout << "Trace build" << std::endl;
        r.draw();
    }

};

#endif