#include <stdio.h>#include <limits.h>#include <sys/types.h>#include <dirent.h>#include <libgen.h>#include <stdlib.h>#include <vector>#include <algorithm>#include <sstream>#include <gtkmm/dialog.h>#include "ActionsMenu.h"#include "MainWindow.h"#include "Config.h"#include "NameUtils.h"Include dependency graph for ActionsMenu.cpp:

Go to the source code of this file.
Functions | |
| template<class T> void | dump_vector (const string &info_, vector< T > &v_) |
| void | log_rename (const string &src_, const string &dest_) |
|
||||||||||||||||
|
Definition at line 47 of file ActionsMenu.cpp. Referenced by ActionsMenu::shift.
00048 {
00049 DL((TRACE,"%s\n", info_.c_str ()));
00050 vector<T>::const_iterator i = v_.begin ();
00051 unsigned int j = 0;
00052 while (i != v_.end ()) {
00053 DL ((APP,"%03d : \"%s\"\n", j++, (*i).c_str ()));
00054 i++;
00055 }
00056 DL((TRACE,"========================================\n"));
00057 }
|
|
||||||||||||
|
Definition at line 60 of file ActionsMenu.cpp. Referenced by ActionsMenu::shift.
00061 {
00062 DL((TRACE,"\n\tExec rename (\"%s\","
00063 "\n\t \"%s\"\n", src_.c_str (), dest_.c_str ()));
00064 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002