Skip to content
Snippets Groups Projects
Limit.h 143 B
Newer Older
  • Learn to ignore specific revisions
  • Radim Vavřík's avatar
    Radim Vavřík committed
    // Limit.h
    
    #ifndef LIMIT_H
    #define LIMIT_H
    
    namespace math1d_cl {
    	struct Limit 
    	{
    		double lower;
    		double upper;
    	};
    }
    #endif