Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move tests on dependencies to a better place
[simgrid.git] / include / simgrid / s4u / Io.hpp
index 2ed2ca8..2f59686 100644 (file)
@@ -20,7 +20,9 @@ namespace s4u {
  */
 
 class XBT_PUBLIC Io : public Activity_T<Io> {
+#ifndef DOXYGEN
   friend kernel::activity::IoImpl;
+#endif
 
 protected:
   explicit Io(kernel::activity::IoImplPtr pimpl);
@@ -44,9 +46,12 @@ public:
   double get_remaining() const override;
   sg_size_t get_performed_ioops() const;
   IoPtr set_disk(const_sg_disk_t disk);
+  IoPtr set_priority(double priority);
   IoPtr set_size(sg_size_t size);
   IoPtr set_op_type(OpType type);
 
+  IoPtr update_priority(double priority);
+
   bool is_assigned() const override;
 };