// File: userBuffer.h // // Declare template instantiations to be used. // // By declaring explictily the template instantiations to be used and // loading with the 'ld' flag '-no-implicit-templates', // the object file built will include single copies of templated methods. #include "buffer.h" //this inserts template interface // typedefs for simpler naming by users typedef Buffer buffer_float; typedef Buffer buffer_double; typedef Buffer buffer_int;