dsalglib  1.0.0
dsalglib is a ready to use data structures and algorithms library written in C++ . Object Oriented Template implementations are written.
sample.h
Go to the documentation of this file.
1 //
2 // Created by moghya_s on 10/1/2016.
3 //
4 
5 #ifndef DSALGLIB_SAMPLE_H
6 #define DSALGLIB_SAMPLE_H
7 
8 
9 template<typename T>
10 void print(T obj)
11 {
12  std::cout<<obj<<"\n";
13 }
14 
15 #endif //DSALGLIB_SAMPLE_H
void print(T obj)
Definition: sample.h:10