ocarina/include/lib/plist.h
Anna Schumaker 160d2ac3be plist: Move more playlist functions into lib/
Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-07-27 11:41:40 -04:00

22 lines
373 B
C++

/*
* Copyright 2014 (c) Anna Schumaker.
*/
#ifndef OCARINA_LIB_PLIST_H
#define OCARINA_LIB_PLIST_H
#include <gtkmm.h>
#include <string>
namespace plist
{
void init();
Glib::ustring get_path(const Gtk::TreePath &);
void select_path(const Gtk::TreePath &);
void del_path_ids(const Gtk::TreePath &, std::vector<unsigned int> &);
}
#endif /* OCARINA_LIB_PLIST_H */