File: Trace.hpp

package info (click to toggle)
vite 1.2%2Bsvn%2Bgit4.c6c0ce7-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,488 kB
  • sloc: cpp: 32,339; makefile: 457; sh: 144; 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