write_bam_file() should take a Filename
This commit is contained in:
parent
e3a3170e5b
commit
a8b7f6bc85
|
|
@ -6831,7 +6831,7 @@ find_net_python_tag(const string &key) const {
|
|||
// error.
|
||||
////////////////////////////////////////////////////////////////////
|
||||
bool NodePath::
|
||||
write_bam_file(const string &filename) const {
|
||||
write_bam_file(const Filename &filename) const {
|
||||
nassertr_always(!is_empty(), false);
|
||||
|
||||
BamFile bam_file;
|
||||
|
|
|
|||
|
|
@ -904,7 +904,7 @@ PUBLISHED:
|
|||
INLINE void set_name(const string &name);
|
||||
INLINE string get_name() const;
|
||||
|
||||
BLOCKING bool write_bam_file(const string &filename) const;
|
||||
BLOCKING bool write_bam_file(const Filename &filename) const;
|
||||
BLOCKING bool write_bam_stream(ostream &out) const;
|
||||
|
||||
INLINE string encode_to_bam_stream() const;
|
||||
|
|
|
|||
Loading…
Reference in New Issue