X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Ffile.cpp;h=04c8be3792ad1ffc95d9d5139e97c25d90a7578a;hp=91f2d5d62d20e44da4b01e82027df2a6b6ee198b;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=474e817a724fdad4db635ba59202283fbcc22ef9 diff --git a/pv/devices/file.cpp b/pv/devices/file.cpp index 91f2d5d..04c8be3 100644 --- a/pv/devices/file.cpp +++ b/pv/devices/file.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -26,15 +25,18 @@ namespace pv { namespace devices { File::File(const std::string &file_name) : - file_name_(file_name) { + file_name_(file_name) +{ } -std::string File::full_name() const { - return boost::filesystem::path(file_name_).filename().string(); +std::string File::full_name() const +{ + return file_name_; } -std::string File::display_name(const DeviceManager&) const { - return File::full_name(); +std::string File::display_name(const DeviceManager&) const +{ + return boost::filesystem::path(file_name_).filename().string(); } } // namespace devices